home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / fusion-icon < prev    next >
Text File  |  2008-11-09  |  2KB  |  60 lines

  1. #!/usr/bin/python
  2. # This file is part of Fusion-icon.
  3.  
  4. # Fusion-icon is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # Fusion-icon is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16.  
  17. import os, sys, time
  18.  
  19. try:
  20.     import FusionIcon
  21.  
  22. except ImportError:
  23.     raise SystemExit(' * Error: the "FusionIcon" module is missing. If you did not install fusion-icon to /usr, you may need to add the appropriate site-packages directory to your PYTHONPATH')
  24.  
  25. # parse command line
  26. from FusionIcon.parser import options
  27.  
  28. if options.reset:    
  29.     try:
  30.         from FusionIcon.data import config_file
  31.         print ' * Configuration file (%s) being reset' %config_file
  32.  
  33.         if os.path.exists(config_file):
  34.             config_backup = '%s.backup.%s' %(config_file, time.strftime('%Y%m%d%H%M%S'))
  35.             os.rename(config_file, config_backup)
  36.             print ' ... backed up to:', config_backup
  37.  
  38.         else:
  39.             print ' ... no configuration file found'
  40.         
  41.     except:
  42.         print ' *** Error: configuration reset failed:'
  43.         raise SystemExit
  44.  
  45.     sys.exit()
  46.  
  47. if options.seconds and 0 < options.seconds <= 60:
  48.     print ' * Sleeping for %s seconds' %options.seconds
  49.     time.sleep(options.seconds)
  50.  
  51. if options.no_interface:
  52.     # a skeleton interface
  53.     from FusionIcon.start import init
  54.     init()
  55.  
  56. else:
  57.     from FusionIcon.interface import choose_interface
  58.     choose_interface(try_first=options.interface)
  59.  
  60.